* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #ffffff;
    height: 200vh;
    /* just for scroll demo */
}

/* ===== HEADER ===== */
.akx-header {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ===== NAVBAR ===== */
.akx-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1000px;
    padding: 15px 50px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    backdrop-filter: blur(10px);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.50);
    transition: 0.4s;
}

/* ===== LOGO ===== */
.akx-logo img {
    width: 100px;
    height: 50px;
    object-fit: cover;
    /* width: 110px;
    transition: 0.4s; */
}

.akx-logo img:hover {
    transform: scale(1.1) rotate(3deg);
}

/* ===== NAV LINKS ===== */
.akx-nav {
    display: flex;
    gap: 25px;
    list-style: none;
}

.akx-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    transition: 0.3s;
}

/* HOVER UNDERLINE */
.akx-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: rgb(253, 174, 22);
    transition: 0.4s;
}

.akx-nav a:hover {
    color: rgb(253, 174, 22);
}

.akx-nav a:hover::after {
    width: 100%;
}

/* ===== MEGA MENU ===== */
.akx-mega-parent {
    position: relative;
}

.akx-mega-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 300px;
    background: #111;
    padding: 25px;
    display: flex;
    gap: 40px;
    border-radius: 15px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s;
}

.akx-mega-box h4 {
    color: rgb(253, 174, 22);
    margin-bottom: 10px;
}

.akx-mega-box a {
    display: block;
    color: #ccc;
    margin: 6px 0;
    font-size: 18px;
}

.akx-mega-box a:hover {
    color: #fff;
}

/* SHOW MENU */
.akx-mega-parent:hover .akx-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== MOBILE TOGGLE ===== */
.akx-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.akx-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 4px;
}

/* ===== MOBILE ===== */
@media(max-width:900px) {

    .akx-navbar {
        width: 95%;
        padding: 15px 20px;
    }

    .akx-nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        display: none;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .akx-nav.active {
        display: flex;
    }

    .akx-toggle {
        display: flex;
    }

    .akx-mega-menu {
        position: static;
        width: 100%;
        flex-direction: column;
        display: none;
        background: #000;
    }

    .akx-mega-parent.active .akx-mega-menu {
        display: flex;
    }
}

/* SECTION */
.arv2-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    justify-content: center;
}

/* CARD */
.arv2-hero-card {
    width: 100%;
    /* max-width:800px; */
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.arv2-hero-card img {}

.arv2-hero-card:hover {
    box-shadow: 0 15px 50px rgba(253, 174, 22, 0.2);
}

/* PROFILE IMAGE */
.arv2-profile-img {
    width: 900px;
    height: 450px;
    margin: auto;
    border-radius: 20px;
    background: rgb(253, 174, 22);
    padding: 4px;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.arv2-profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

/* TEXT */
.arv2-title {
    font-size: 65px;
    margin-top: 15px;
    font-weight: 700;
}

.arv2-title span {
    color: rgb(253, 174, 22);
}

.arv2-subtitle {
    font-size: 25px;
    margin-top: 8px;
    color: #000000;
}

.arv2-desc {
    margin-top: 15px;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* BUTTONS */
.arv2-btn-group {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.arv2-btn {
    padding: 12px 22px;
    border: none;
    border-radius: 30px;
    background: black;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

.arv2-btn:hover {
    background: rgb(253, 174, 22);
    color: black;
    transform: scale(1.05);
}

/* SOCIAL */
.arv2-social-proof {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.arv2-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    background: rgb(253, 174, 22);
}

.arv2-social-text {
    margin-left: 15px;
    font-size: 25px;
    color: #444;
}

.arv2-social-text span {
    color: rgb(253, 174, 22);
    font-weight: 600;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .arv2-title {
        font-size: 26px;
    }

    .arv2-subtitle {
        font-size: 16px;
    }

    .arv2-desc {
        font-size: 14px;
    }

    .arv2-profile-img {
        width: 110px;
        height: 110px;
    }

}

/* SECTION */
.arv3-logo-section {
    padding: 60px 20px;
    background: #fff;
    overflow: hidden;
    margin-top: -100px;
}

/* TITLE */
.arv3-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

.arv3-title span {
    color: rgb(253, 174, 22);
}

/* SLIDER */
.arv3-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* TRACK */
.arv3-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: arv3-scroll 25s linear infinite;
}

/* PAUSE ON HOVER */
.arv3-slider:hover .arv3-track {
    animation-play-state: paused;
}

/* LOGO BOX */
.arv3-logo {
    min-width: 180px;
    height: 100px;
    /* background:#000; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.arv3-logo img {
    max-width: 80%;
    max-height: 70%;
    filter: grayscale(100%);
    transition: 0.3s;
}

/* HOVER EFFECT */
.arv3-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(253, 174, 22, 0.4);
    /* background: #111; */
}

.arv3-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* GLOW EFFECT */
.arv3-logo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 174, 22, 0.4), transparent);
    transition: 0.5s;
}

.arv3-logo:hover::before {
    left: 100%;
}

/* ANIMATION */
@keyframes arv3-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media(max-width:768px) {

    .arv3-logo {
        min-width: 140px;
        height: 80px;
    }

    .arv3-title {
        font-size: 22px;
    }

}

/* SECTION */
.arv4-services-section {
    padding: 80px 20px;
    text-align: center;
}

/* TITLE */
.arv4-title {
    font-size: 38px;
    font-weight: 700;
}

.arv4-title span {
    color: rgb(253, 174, 22);
}

.arv4-subtitle {
    margin-top: 10px;
    color: #555;
    font-size: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID */
.arv4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* CARD */
.arv4-card {
    background: rgb(253, 174, 22);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* HOVER */
.arv4-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(253, 174, 22, 0.5);
}

/* SHINE EFFECT */
.arv4-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.6s;
}

.arv4-card:hover::before {
    left: 100%;
}

/* ICON */
.arv4-icon {
    width: 60px;
    height: 60px;
    background: black;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: white;
    transition: 0.3s;
}

/* ICON HOVER */
.arv4-card:hover .arv4-icon {
    transform: rotate(10deg) scale(1.1);
    background: white;
    color: black;
}

/* TEXT */
.arv4-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.arv4-card p {
    font-size: 14px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* LIST */
.arv4-list {
    list-style: none;
    margin-bottom: 20px;
}

.arv4-list li {
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arv4-list li::before {
    content: "✔";
    color: black;
    font-size: 12px;
}

/* BUTTON */
.arv4-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 25px;
    background: black;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.arv4-btn:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .arv4-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .arv4-grid {
        grid-template-columns: 1fr;
    }

    .arv4-title {
        font-size: 28px;
    }
}

/* SECTION */
.arv5-slider-section {
    padding: 80px 20px;
    text-align: center;
}

/* TITLE */
.arv5-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
}

.arv5-title span {
    color: rgb(253, 174, 22);
}

/* SLIDER WRAP */
.arv5-slider {
    position: relative;
    max-width: 900px;
    margin: auto;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* CARD */
.arv5-card {
    position: absolute;
    width: 260px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background: #000;
}

/* IMAGE */
.arv5-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* CENTER ACTIVE */
.arv5-card.active {
    transform: translateX(0) scale(1.1);
    z-index: 3;
    border-color: rgb(253, 174, 22);
    box-shadow: 0 20px 60px rgba(253, 174, 22, 0.4);
}

/* LEFT */
.arv5-card.left {
    transform: translateX(-220px) rotateY(25deg) scale(0.9);
    z-index: 2;
    opacity: 0.7;
}

/* RIGHT */
.arv5-card.right {
    transform: translateX(220px) rotateY(-25deg) scale(0.9);
    z-index: 2;
    opacity: 0.7;
}

/* FAR */
.arv5-card.hidden {
    opacity: 0;
    z-index: 0;
}

/* HOVER EFFECT */
.arv5-card:hover img {
    transform: scale(1.1);
}

/* BUTTONS */
.arv5-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgb(253, 174, 22);
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
}

.arv5-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.arv5-prev {
    left: -70px;
}

.arv5-next {
    right: -70px;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .arv5-slider {
        height: 350px;
    }

    .arv5-card {
        width: 200px;
        height: 300px;
    }

    .arv5-card.left {
        transform: translateX(-150px) scale(0.85);
    }

    .arv5-card.right {
        transform: translateX(150px) scale(0.85);
    }

    .arv5-prev {
        left: 0;
    }

    .arv5-next {
        right: 0;
    }

}

/* SECTION */
.arv6-portfolio-section {
    padding: 80px 20px;
    text-align: center;
    background-color: black;
}

/* TOP BUTTON */
.arv6-top-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid rgb(253, 174, 22);
    border-radius: 30px;
    color: rgb(253, 174, 22);
    margin-bottom: 20px;
    transition: 0.3s;
}

.arv6-top-btn:hover {
    background: rgb(253, 174, 22);
    color: black;
}

/* TITLE */
.arv6-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.arv6-subtitle {
    max-width: 700px;
    margin: auto;
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
}

/* GRID */
.arv6-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.arv6-card {
    background: #111;
    border-radius: 20px;
    padding: 30px 20px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* HOVER EFFECT */
.arv6-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(253, 174, 22, 0.4);
    border-color: rgba(253, 174, 22, 0.5);
}

/* GLOW LINE */
.arv6-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(253, 174, 22, 0.4), transparent);
    transition: 0.6s;
}

.arv6-card:hover::before {
    left: 100%;
}

/* ICON */
.arv6-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: rgb(253, 174, 22);
    transition: 0.3s;
}

.arv6-card:hover .arv6-icon {
    transform: scale(1.2) rotate(5deg);
}

/* TEXT */
.arv6-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.arv6-card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* BUTTON */
.arv6-btn {
    padding: 8px 18px;
    border: 1px solid rgb(253, 174, 22);
    border-radius: 20px;
    background: transparent;
    color: rgb(253, 174, 22);
    cursor: pointer;
    transition: 0.3s;
}

.arv6-btn:hover {
    background: rgb(253, 174, 22);
    color: black;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .arv6-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .arv6-grid {
        grid-template-columns: 1fr;
    }

    .arv6-title {
        font-size: 26px;
    }
}

/* SECTION */
.arv_reel_testimonial_section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

/* TITLE */
.arv_reel_title {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid rgb(253, 174, 22);
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 60px;
    transition: 0.3s;
}

.arv_reel_title:hover {
    background: rgb(253, 174, 22);
    color: #fff;
}

/* CONTAINER */
.arv_reel_slider_wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* SLIDER */
.arv_reel_slider {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s ease;
}

/* CARD */
.arv_reel_card {
    width: 280px;
    height: 480px;
    margin: 0 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
    transform: scale(0.8);
    filter: blur(2px);
    opacity: 0.5;
}

/* ACTIVE */
.arv_reel_card.active {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
    border: 3px solid rgb(253, 174, 22);
    box-shadow: 0 20px 60px rgba(253, 174, 22, 0.4);
}

/* VIDEO */
.arv_reel_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT OVERLAY */
.arv_reel_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    text-align: left;
}

/* TEXT */
.arv_reel_overlay p {
    font-size: 14px;
    margin-bottom: 10px;
}

.arv_reel_overlay h3 {
    font-size: 16px;
}

.arv_reel_overlay span {
    color: rgb(253, 174, 22);
    font-size: 13px;
}

/* HOVER */
.arv_reel_card:hover {
    transform: scale(1.05);
    filter: blur(0);
    opacity: 1;
}

/* ARROWS */
.arv_reel_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(253, 174, 22);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: 0.3s;
}

.arv_reel_arrow:hover {
    background: #000;
    color: #fff;
}

.arv_reel_prev {
    left: 0;
}

.arv_reel_next {
    right: 0;
}

/* DOTS */
.arv_reel_dots {
    margin-top: 25px;
}

.arv_reel_dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.arv_reel_dots span.active {
    background: rgb(253, 174, 22);
    transform: scale(1.3);
}

/* RESPONSIVE */
@media(max-width:900px) {
    .arv_reel_card {
        width: 220px;
        height: 400px;
    }
}

@media(max-width:600px) {
    .arv_reel_slider {
        flex-direction: column;
    }

    .arv_reel_card {
        margin: 10px 0;
        width: 90%;
        height: 400px;
        filter: none !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    .arv_reel_arrow {
        display: none;
    }
}

/* SECTION */
.arv_team_section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

/* TITLE */
.arv_team_title {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid rgb(253, 174, 22);
    border-radius: 40px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 60px;
    transition: 0.3s;
}

.arv_team_title:hover {
    background: rgb(253, 174, 22);
    color: #fff;
}

/* GRID */
.arv_team_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.arv_team_card {
    background: #000;
    color: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* GLOW BORDER */
.arv_team_card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgb(253, 174, 22), transparent);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.arv_team_card:hover::before {
    opacity: 1;
}

/* HOVER */
.arv_team_card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(253, 174, 22, 0.3);
}

/* IMAGE */
.arv_team_img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgb(253, 174, 22);
    margin: 0 auto 15px;
    overflow: hidden;
    transition: 0.4s;
}

.arv_team_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* IMAGE HOVER */
.arv_team_card:hover .arv_team_img {
    transform: rotate(5deg) scale(1.05);
}

/* NAME */
.arv_team_card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* ROLE */
.arv_team_role {
    color: rgb(253, 174, 22);
    font-size: 14px;
    margin-bottom: 5px;
}

/* POSITION */
.arv_team_position {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* DESC */
.arv_team_desc {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 20px;
}

/* SOCIAL */
.arv_team_social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.arv_team_social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgb(253, 174, 22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

/* SOCIAL HOVER */
.arv_team_social a:hover {
    background: rgb(253, 174, 22);
    color: #000;
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:600px) {
    .arv_team_title {
        font-size: 16px;
    }
}

/* SECTION */
.arv_cta_section{
position:relative;
padding:80px 20px;
overflow:hidden;
background:linear-gradient(135deg, #000, rgb(253,174,22));
color:#fff;
}

/* PARTICLES BACKGROUND */
.arv_cta_canvas{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
}

/* CONTENT */
.arv_cta_container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
position:relative;
z-index:2;
flex-wrap:wrap;
}

/* TEXT */
.arv_cta_text h1{
font-size:42px;
font-weight:700;
margin-bottom:15px;
line-height:1.3;
}

.arv_cta_text h1 span{
color:rgb(253,174,22);
text-shadow:0 0 15px rgba(253,174,22,0.6);
}

.arv_cta_text p{
opacity:0.9;
}

/* BUTTON */
.arv_cta_btn{
background:rgb(253,174,22);
color:#000;
padding:14px 30px;
border-radius:40px;
font-weight:600;
text-decoration:none;
display:inline-flex;
align-items:center;
gap:10px;
transition:0.3s;
box-shadow:0 10px 30px rgba(253,174,22,0.4);
}

/* BUTTON HOVER */
.arv_cta_btn:hover{
background:#fff;
transform:translateY(-5px) scale(1.05);
box-shadow:0 15px 40px rgba(255,255,255,0.4);
}

/* FLOATING GLOW */
.arv_cta_section::before{
content:'';
position:absolute;
width:300px;
height:300px;
background:rgba(253,174,22,0.3);
filter:blur(100px);
top:-50px;
left:-50px;
animation:arvMoveGlow 6s infinite alternate;
}

@keyframes arvMoveGlow{
0%{transform:translate(0,0);}
100%{transform:translate(100px,100px);}
}

/* RESPONSIVE */
@media(max-width:768px){
.arv_cta_container{
flex-direction:column;
text-align:center;
}

.arv_cta_text h1{
font-size:30px;
}
}

/* FOOTER */
.arv_ultra_footer{
background:#000;
color:#fff;
position:relative;
overflow:hidden;
padding-top:10px;
}

/* WAVE */
/* .arv_wave{
position:absolute;
top:0;
left:0;
width:100%;
overflow:hidden;
line-height:0;
}
.arv_wave svg{
display:block;
width:calc(100% + 1.3px);
height:120px;
} */

/* PARALLAX GLOW */
.arv_glow{
position:absolute;
width:300px;
height:300px;
background:rgba(253,174,22,0.25);
filter:blur(120px);
pointer-events:none;
transition:0.1s;
}

/* GRID */
.arv_ultra_grid{
max-width:1500px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:40px 20px;
position:relative;
z-index:2;
}

/* GLASS CARD */
.arv_box{
background:rgba(255,255,255,0.05);
border-radius:20px;
padding:25px;
backdrop-filter:blur(10px);
transition:0.4s;
border:1px solid transparent;
}

/* HOVER EFFECT */
.arv_box:hover{
transform:translateY(-10px);
border:1px solid rgb(253,174,22);
box-shadow:0 15px 40px rgba(253,174,22,0.3);
}

/* HEADINGS */
.arv_box h3{
color:rgb(253,174,22);
margin-bottom:15px;
}

/* LINKS */
.arv_links a{
display:block;
color:#fff;
text-decoration:none;
margin:8px 0;
position:relative;
}

.arv_links a::after{
content:'';
position:absolute;
width:0;
height:2px;
background:rgb(253,174,22);
left:0;
bottom:-3px;
transition:0.3s;
}

.arv_links a:hover::after{
width:100%;
}

/* SOCIAL */
.arv_social{
display:flex;
gap:10px;
margin-top:15px;
}

.arv_social a{
width:40px;
height:40px;
border-radius:50%;
border:1px solid rgb(253,174,22);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
transition:0.3s;
}

.arv_social a:hover{
background:rgb(253,174,22);
color:#000;
transform:scale(1.1);
}

/* FORM */
.arv_form input,
.arv_form textarea{
width:100%;
margin:8px 0;
padding:12px;
background:#111;
border:none;
border-radius:8px;
color:#fff;
}

.arv_form input:focus,
.arv_form textarea:focus{
outline:1px solid rgb(253,174,22);
}

/* BUTTON */
.arv_btn{
width:100%;
padding:12px;
background:rgb(253,174,22);
border:none;
border-radius:8px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.arv_btn:hover{
background:#fff;
transform:translateY(-3px);
}

/* BOTTOM */
.arv_bottom{
text-align:center;
padding:20px;
border-top:1px solid rgba(255,255,255,0.1);
font-size:13px;
opacity:0.7;
}

/* RESPONSIVE */
@media(max-width:768px){
.arv_ultra_footer{
padding-top:80px;
}
}
